home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 11 / CU Amiga Magazine's Super CD-ROM 11 (1997)(EMAP Images)(GB)(Track 1 of 3)[!][issue 1997-06].iso / cucd / programming / stormc-demo / rexx / masm.srx < prev    next >
Text File  |  1996-11-10  |  576b  |  24 lines

  1. /* 
  2.     masm.srx
  3.     
  4.     Use MASM for your assembler files
  5.         
  6.     © 1996 HAAGE & PARTNER GmbH
  7.     
  8.     $VER masm.srx 1.0 (4.11.96)
  9.     
  10.     Scripts for assemblers should never set an object file name, this is always
  11.     set by the StormShell itself.
  12.     
  13. */
  14.  
  15. /* Don't forget the point '.' at the end                         \/        */
  16. PARSE ARG '"' filename '"' '"' projectname '"' '"' objectname '"' .
  17.  
  18. SAY ""
  19. SAY "MASM Script ©1996 HAAGE & PARTNER GmbH"
  20. SAY "Assemble "||filename||" to object "||objectname||"."
  21.  
  22. /* compile */
  23. ADDRESS COMMAND "MCPP:BIN/MASM "||filename||" -o "||objectname||" -c clo"
  24.